home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC-SIG: World of Games
/
PC-SIG World of Games (CDRM1080710) (1993).iso
/
1938
/
ALTSCRN.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-09-24
|
3KB
|
52 lines
@echo off
echo
cls
echo ╔════════════════════════════════════════════════════════════════════════════╗
echo ║ This batch file will create a new copy of the screen-image file used by ║
echo ║ GAMES.BAT (GAMES.SCR). ║
echo ║ ║
echo ║ This batch file is included so you can edit the screen in this batch file ║
echo ║ (adding other games), execute the batch file (to create the new screen ║
echo ║ image file) and then edit GAMES.BAT (to include your changes there). ║
echo ╠════════════════════════════════════════════════════════════════════════════╣
echo ║ Please address any comments to: ║
echo ║ ║
echo ║ SPETER SOFTWARE ║
echo ║ PO BOX 643 ║
echo ║ LANE COVE ║
echo ║ N.S.W. 2066 ║
echo ║ AUSTRALIA ║
echo ╠════════════════════════════════════════════════════════════════════════════╣
echo ║ Do you want to continue (and create the new screen file) ? ║
echo ║ ║
echo ║ YES continue ║
echo ║ NO don't continue ║
echo ╚════════════════════════════════════════════════════════════════════════════╝
rem
getmouse 5 19 26 20 YyNn 5 19
rem ---- letter entry
if errorlevel 203 goto end
if errorlevel 201 goto begin
rem ---- mouse entry
if errorlevel 120 goto end
rem
:begin
cls
echo ╔════════════════════════════════════════════════════════════╤═══════╤═══════╗
echo ║ GAMES DISK (C) SPETER SOFTWARE requires: │ EGA │ Mouse ║
echo ╠══════════════════════╤═════════════════════════════════════╪═══════╪═══════╣
echo ║ A Conquest │ Map based war simulation game │ yes │ yes ║
echo ║ B Poker Square │ 2 dimensional poker │ yes │ no * ║
echo ║ C Squasher │ The monsters are after you... │ yes │ no ║
echo ║ D Aliens │ Stop the aliens landing... │ no │ no ║
echo ║ E Walking Line │ Multi-coloured walking line. │ yes │ no ║
echo ║ F 2 Walking lines │ Two walking lines │ yes │ no ║
echo ║ G Hypocyloids │ Spyrograph patterns │ yes │ no ║
echo ║ │ │ │ ║
echo ║ X Return to DOS │ │ optional * ║
echo ╚══════════════════════╧═════════════════════════════════════╧═══════╧═══════╝
copyrect 0 0 0 24 79 games.scr
rem
:end
cls